home *** CD-ROM | disk | FTP | other *** search
/ Digital Photo Album: Houko Kuwashima / Digital Photo Album: Houko Kuwashima.iso / inter_.dxr / 00002.ls < prev    next >
Encoding:
Text File  |  1998-10-08  |  575 b   |  30 lines

  1. on enterFrame
  2.   global interdirection
  3.   case the frame of
  4.     "2", "10", "18", "26", "34", "42", "50", "58", "66":
  5.       frameactions()
  6.   end case
  7. end
  8.  
  9. on exitFrame
  10.   global interdirection
  11.   if rollOver(35) or rollOver(36) or rollOver(37) or rollOver(38) or rollOver(39) then
  12.     cursor([38, 39])
  13.   else
  14.     cursor(-1)
  15.   end if
  16.   if interdirection = 0 then
  17.     go(the frame)
  18.   else
  19.     if interdirection = 1 then
  20.       go(the frame - 1)
  21.     else
  22.       if interdirection = 2 then
  23.         go(the frame + 1)
  24.       else
  25.         go(the frame)
  26.       end if
  27.     end if
  28.   end if
  29. end
  30.